home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 3.0 KB | 138 lines | [TEXT/ScoM] |
- LEGATO OPTIONS IN TIMESHEET
-
- ; no legato, note duration is the same as beat
-
- (def-section-timesheet sect-a
- ;
- ; timesheet
- ;
- with 1/1
- ; !---!---!---!---!---!---!---!---!
- tonality ". . . . . . " '((dorian e 4) (mixolydian b 4))
- strings "----------------"
- beat 1/16 ; !---!---!---!---!
- strings "- - " '(ace acf bcf -bdf) with '(65)
- )
-
- (play-file-p "Legatos"
- strings sect-a
- )
-
- ; legato n, percentual legato, 100=play full length
-
- (def-section-timesheet sect-a
- ;
- ; timesheet
- ;
- with 1/1
- ; !---!---!---!---!---!---!---!---!
- tonality ". . . . . . " '((dorian e 4) (mixolydian b 4))
- strings "----------------"
- beat 1/16 ; !---!---!---!---!
- legato 100
- strings "- - " '(ace acf bcf -bdf) with '(65)
- )
-
- (play-file-p "Legatos"
- strings sect-a
- )
-
- ; legato (fix 1/8), note duration is fixed 1/8
-
- (def-section-timesheet sect-a
- ;
- ; timesheet
- ;
- with 1/1
- ; !---!---!---!---!---!---!---!---!
- tonality ". . . . . . " '((dorian e 4) (mixolydian b 4))
- strings "----------------"
- beat 1/16 ; !---!---!---!---!
- legato (fix 1/8)
- strings "- - " '(ace acf bcf -bdf) with '(65)
- )
-
- (play-file-p "Legatos"
- strings sect-a
- )
-
- ; legato (add 1/16), note duration is max legato plus 1/16
-
- (def-section-timesheet sect-a
- ;
- ; timesheet
- ;
- with 1/1
- ; !---!---!---!---!---!---!---!---!
- tonality ". . . . . . " '((dorian e 4) (mixolydian b 4))
- strings "----------------"
- beat 1/16 ; !---!---!---!---!
- legato (add 1/16)
- strings "- - " '(ace acf bcf -bdf) with '(65)
- )
-
- (play-file-p "Legatos"
- strings sect-a
- )
-
- ; legato (sub 1/8), note duration is max legato minus 1/8
- ; (same is achieved by (add -1/8)
-
- (def-section-timesheet sect-a
- ;
- ; timesheet
- ;
- with 1/1
- ; !---!---!---!---!---!---!---!---!
- tonality ". . . . . . " '((dorian e 4) (mixolydian b 4))
- strings "----------------"
- beat 1/16 ; !---!---!---!---!
- legato (sub 1/8)
- strings "- - " '(ace acf bcf -bdf) with '(65)
- )
-
- (play-file-p "Legatos"
- strings sect-a
- )
-
- ; legato (times 1.1), note duration is max legato * 1.1
- ; (same is achieved by legato 110)
-
- (def-section-timesheet sect-a
- ;
- ; timesheet
- ;
- with 1/1
- ; !---!---!---!---!---!---!---!---!
- tonality ". . . . . . " '((dorian e 4) (mixolydian b 4))
- strings "----------------"
- beat 1/16 ; !---!---!---!---!
- legato (times 1.1)
- strings "- - " '(ace acf bcf -bdf) with '(65)
- )
-
- (play-file-p "Legatos"
- strings sect-a
- )
-
- ; legato (divide 2), note duration is max legato divided by 2
- ; (same is achieved by legato 50)
-
- (def-section-timesheet sect-a
- ;
- ; timesheet
- ;
- with 1/1
- ; !---!---!---!---!---!---!---!---!
- tonality ". . . . . . " '((dorian e 4) (mixolydian b 4))
- strings "----------------"
- beat 1/16 ; !---!---!---!---!
- legato (divide 2)
- strings "- - " '(ace acf bcf -bdf) with '(65)
- )
-
- (play-file-p "Legatos"
- strings sect-a
- )
-
-